home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
umich
/
diskutil
/
tapebios.zoo
/
include
/
cookie.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-03-22
|
296 b
|
21 lines
/* header file for dealing with the cookie jar */
#ifndef _COOKIE_H
#define _COOKIE_H
union clong {
char aschar[4];
long aslong;
};
struct cookie {
union clong tag;
long value;
};
typedef struct cookie COOKIE;
#define CJAR ((COOKIE **) 0x5a0)
#endif /* _COOKIE_H */